GetEncodedResponseResponse

data class GetEncodedResponseResponse(body: String?, originalSize: Int, encodedSize: Int)

Represents response frame that is returned from Audits#getEncodedResponse operation call. Returns the response body and size if it were re-encoded with the specified settings. Only applies to images.

See also

Constructors

GetEncodedResponseResponse
Link copied to clipboard
fun GetEncodedResponseResponse(body: String? = null, originalSize: Int, encodedSize: Int)

Properties

body
Link copied to clipboard
val body: String? = null
The encoded body as a base64 string.
encodedSize
Link copied to clipboard
val encodedSize: Int
Size after re-encoding.
originalSize
Link copied to clipboard
val originalSize: Int
Size before re-encoding.

Sources

jvm source
Link copied to clipboard